home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 36 / Amiga Format CD36 (1999-01-22)(Future Publishing)(GB)[!][issue 1999-02].iso / -readerstuff- / matt_briggs / scripts / window.vis < prev   
Text File  |  1998-12-07  |  397b  |  25 lines

  1.  __                 __  
  2.  \/ The window demo \/
  3.  
  4. BEGIN(MAIN)
  5.     SCREEN(320,256,5,$0)
  6.     TrackLoad(Visions:Data/Window/Happy.mod)
  7.     GOTO(wait)
  8. STOP
  9.  
  10. BEGIN(wait)
  11.     ILBM(Visions:Data/Window/win.iff)
  12.     AddZone(200,65,218,83,$0,start)
  13.     Glow(200,65,218,83,2,0,0,0)
  14. STOP
  15.  
  16. BEGIN(start)
  17.     Anim(Visions:Data/Window/window.anim,20)
  18.     TrackPlay
  19.     AnimWait
  20.     TrackStop
  21.     GOTO(wait)
  22. STOP
  23.  
  24.  
  25.